/** @file sys_main.c 
*   @brief Application main file
*   @date 15.Mar.2012
*   @version 03.01.00
*
*   This file contains an empty main function,
*   which can be used for the application.
*/

/* (c) Texas Instruments 2009-2012, All rights reserved. */

/* USER CODE BEGIN (0) */
/* USER CODE END */

/* Include Files */

#include "sys_common.h"
#include "system.h"

/* USER CODE BEGIN (1) */
/* USER CODE END */


/** @fn void main(void)
*   @brief Application main function
*   @note This function is empty by default.
*
*   This function is called after startup.
*   The user can use this function to implement the application.
*/

/* USER CODE BEGIN (2) */
extern void EMAC_LwIP_Main (uint8_t * emacAddress);
/* USER CODE END */




uint8_t		emacAddress[6] 	= 	{0x00, 0x08, 0xEE, 0x03, 0xA6, 0x6C};
uint32_t 	emacPhyAddress	=	1;

void main(void)
{
/* USER CODE BEGIN (3) */
	EMAC_LwIP_Main (emacAddress);
/* USER CODE END */
}


/* USER CODE BEGIN (4) */
/* USER CODE END */
